home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / df.dir / 00306.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  630 b   |  22 lines

  1. on mouseUp
  2.   global Double
  3.   if Double = 0 then
  4.     if the visible of sprite 48 = 1 then
  5.       put "inside 283, double false and vis 48 true"
  6.       set MovHt to the height of sprite 48
  7.       set MovWd to the width of sprite 48
  8.       set MovHt to 2 * MovHt
  9.       set MovWd to 2 * MovWd
  10.       set the moveableSprite of sprite 48 to 1
  11.       set the height of sprite 48 to MovHt
  12.       set the width of sprite 48 to MovWd
  13.       put the locH of sprite 48
  14.       put the locV of sprite 48
  15.       spriteBox(48, 0, 0, 640, 480)
  16.       set the moveableSprite of sprite 48 to 0
  17.       updateStage()
  18.       set Double to 1
  19.     end if
  20.   end if
  21. end
  22.